From 1b9e624004cfb64135b744f877e5fa87e5810abd Mon Sep 17 00:00:00 2001 From: Sebastien Castiel Date: Tue, 9 Jan 2024 08:53:51 -0500 Subject: Ask the user who they are when opening a group for the first time (#7) --- src/app/groups/[groupId]/expenses/page.tsx | 80 ++++++++++++++++-------------- 1 file changed, 44 insertions(+), 36 deletions(-) (limited to 'src/app/groups/[groupId]/expenses/page.tsx') diff --git a/src/app/groups/[groupId]/expenses/page.tsx b/src/app/groups/[groupId]/expenses/page.tsx index 5285cb8..2a1ac5f 100644 --- a/src/app/groups/[groupId]/expenses/page.tsx +++ b/src/app/groups/[groupId]/expenses/page.tsx @@ -1,3 +1,4 @@ +import { ActiveUserModal } from '@/app/groups/[groupId]/expenses/active-user-modal' import { ExpenseList } from '@/app/groups/[groupId]/expenses/expense-list' import { Button } from '@/components/ui/button' import { @@ -24,45 +25,52 @@ export default async function GroupExpensesPage({ }: { params: { groupId: string } }) { + const group = await getGroup(groupId) + if (!group) notFound() + return ( - -
- - Expenses - - Here are the expenses that you created for your group. - - - - - -
+ <> + +
+ + Expenses + + Here are the expenses that you created for your group. + + + + + +
- - ( -
-
- - + + ( +
+
+ + +
+
+ +
-
- -
-
- ))} - > - - - - + ))} + > + + + + + + + ) } -- cgit v1.3